home *** CD-ROM | disk | FTP | other *** search
- program LexSampleP;
-
- {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Drawing.dll'}
- {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Data.dll'}
- {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Windows.Forms.dll'}
-
- uses
- Forms,
- LexSampleU in 'LexSampleU.pas' {LexSampleForm: Borland.Vcl.Forms.TForm};
-
- {$R *.res}
-
- {$IFDEF CLR}
- [STAThread]
- {$ENDIF}
-
- begin
- Application.Initialize;
- Application.CreateForm(TLexSampleForm, LexSampleForm);
- Application.Run;
- end.
-